home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / wtour / list2.tcl < prev    next >
Encoding:
Text File  |  1994-01-30  |  464 b   |  18 lines

  1. #
  2. # List callback info
  3. #
  4. # Multiple select by clicking on items
  5.  
  6. xmList .list managed \
  7.     -items "Item 1, Item 2, Item 3" \
  8.     -itemCount 3 \
  9.     -selectionPolicy multiple_select
  10. .list multipleSelectionCallback {
  11.     puts stdout "Info from list callback:
  12.           item:  %item
  13.           item position:  %item_position
  14.           selected items:  %selected_items
  15.           selected item count:  %selected_item_count
  16.           selection type:  %selection_type"
  17. }
  18.